home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / program / 441 / dlibs12 / cputs.c < prev    next >
C/C++ Source or Header  |  1990-11-23  |  128b  |  11 lines

  1. #include <stdio.h>
  2.  
  3. extern    int    putch();
  4.  
  5. void cputs(data)
  6.     register char *data;
  7.     {
  8.     while(*data)
  9.         putch(*data++);
  10.     }
  11.